Rounding
\n";
echo "The integer rounded to the whole number is: " .$english_format_number = number_format($integer)."
\n";
echo "The integer rounded to the tenth's place is: " .$english_format_number = number_format($integer,1)."
\n";
echo "The integer rounded to the hundredth's place is: " .$english_format_number = number_format($integer,2)."
\n";
echo "The integer rounded to the thousandth's place is: " .$english_format_number = number_format($integer,3)."
\n";
echo "The integer rounded to the ten thousandth's place is: " .$english_format_number = number_format($integer,4)."
\n";
echo "The integer rounded to the hundred thousandth's place is: " .$english_format_number = number_format($integer,5)."
\n";
echo "The integer rounded to the millionth's place is: " .$english_format_number = number_format($integer,6)."
\n";
?>